home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / zapem-0.000 / zapem-0 / zapem / keytest.c < prev    next >
C/C++ Source or Header  |  1995-02-22  |  123b  |  13 lines

  1. #include <stdio.h>
  2. #include <vga.h>
  3.  
  4. main()
  5. {    
  6.     int key;
  7.     while(key!='q')
  8.     {
  9.         key=vga_getkey();
  10.         printf("%d ",key);
  11.     }
  12. }
  13.